Conversation
|
|
closing for now |
* Update README.md * Update README.md --------- Co-authored-by: Olivier Bourgeois <3271352+bourgeoisor@users.noreply.github.com>
📝 WalkthroughWalkthroughBroad version and tooling upgrades across CI, runtimes, container images, and dependencies; many Dockerfiles made multi‑platform; Terraform provider/module constraints bumped; Helm templates adjusted to nest seccompProfile under securityContext; OpenTelemetry initialization switched to NodeSDK in Node services; cartstore uses an upsert; loadgenerator RATE env added. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Client
participant Service as Node service
participant SDK as NodeSDK (otel/sdk-node)
participant Exporter as OTLP gRPC Exporter
participant Collector as OTLP Collector
Note over Service: Startup when ENABLE_TRACING == "1"
Service->>SDK: construct NodeSDK(resource, exporter)
SDK->>Exporter: configure OTLP exporter
Service->>SDK: sdk.start()
SDK->>Exporter: initialize connection
Note over Client,Service: Request handling
Client->>Service: RPC/HTTP request
Service->>SDK: create spans
SDK->>Exporter: export spans
Exporter->>Collector: send OTLP traces
sequenceDiagram
autonumber
participant Helm as Template engine
participant Values as Chart values
participant Output as Rendered YAML
Helm->>Values: evaluate .Values.securityContext.enable
alt securityContext enabled
Helm->>Output: render securityContext {...}
Helm->>Values: evaluate .Values.seccompProfile.enable
alt seccompProfile enabled
Helm->>Output: render seccompProfile inside securityContext
else
Helm-->>Output: skip seccompProfile
end
else
Helm-->>Output: omit securityContext and seccompProfile
end
Estimated code review effort🎯 4 (Complex) | ⏱️ ~45 minutes Poem
🚥 Pre-merge checks | ❌ 3❌ Failed checks (2 warnings, 1 inconclusive)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.83.1 to 1.83.2. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.83.1...v1.83.2) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-version: 1.83.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Background
Fixes
Change Summary
Additional Notes
Testing Procedure
Related PRs or Issues
Summary by CodeRabbit
New Features
Documentation
Chores
Resource Defaults
Helm / Kubernetes
Observability